Database:  /dbdata/interbase/pcweek.gdb, User: pcweek
select 'Checking table sizes...' from rdb$database;

                        
======================= 

Checking table sizes... 

select '== Data tables ==' from rdb$database;

                  
================= 

== Data tables == 

select 'uniques: ' || count(*) from uniques;

                      
===================== 

uniques: 10000        

select 'hundred: ' || count(*) from hundred;

                      
===================== 

hundred: 10000        

select 'tenpct: ' || count(*) from tenpct;

                     
==================== 

tenpct: 10000        

select 'updates: ' || count(*) from updates;

                      
===================== 

updates: 10000        

select 'tenthou: ' || count(*) from tenthou;

                      
===================== 

tenthou: 100          

select 'hunthou: ' || count(*) from hunthou;

                      
===================== 

hunthou: 1000         

select 'twomill: ' || count(*) from twomill;

                      
===================== 

twomill: 20000        

select 'threemill: ' || count(*) from threemill;

                        
======================= 

threemill: 30000        

select 'fourmill: ' || count(*) from fourmill;

                       
====================== 

fourmill: 40000        

select 'fivemill: ' || count(*) from fivemill;

                       
====================== 

fivemill: 50000        

select 'fourram: ' || count(*) from fourram;

                      
===================== 

fourram: 200000       

select '== Housekeeping tables ==' from rdb$database;

                          
========================= 

== Housekeeping tables == 

select 'update_int_history: ' || count(*) from update_int_history;

                                 
================================ 

                                 

select 'oltp_write_01_check_value: ' || count(*) from oltp_write_01_check_value;

                                        
======================================= 

oltp_write_01_check_value: 1            

select 'update_signed_history: ' || count(*) from update_signed_history;

                                    
=================================== 

                                    

select 'del_history: ' || count(*) from del_history;

                          
========================= 

                          

select 'oltp_write_04_count_updates: ' || count(*) from oltp_write_04_count_updates;

                                          
========================================= 

oltp_write_04_count_updates: 1            

exit;
